home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Converters / Filter-1.1 / Source / Filter.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  435 b   |  24 lines

  1. /*
  2.  
  3. File Filter.h
  4.  
  5. A Filter object responds to requests to open a file.  It looks up the appropriate application to use by checking the defaults database.
  6.  
  7. */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11.  
  12. /* ========================================================================== */
  13.  
  14.  
  15. @interface Filter : Object
  16. {
  17. }
  18.  
  19.  
  20. - (BOOL) appAcceptsAnotherFile: sender;
  21. - (int) app: sender  openFile: (const char *) filename
  22.             type: (const char *) aType;
  23.  
  24. @end